POST for clients

URL: /api/2/

Mandatory Fields:

Permissions Requireds for the API Key: 
* roleHR=2 (Read/Write)

For PATCH:
* The HTTP Method must be PATCH instead of POST
* The json should include the var 'client_id' (integer)

=======================================================
Example JSON:
{
  "salutation": "",
  "first_name": "REST",
  "last_name": "API3",
  "spouse_salutation": "",
  "spouse_first_name": "",
  "spouse_last_name": "",
  "telephone1": "",
  "telephone_description1": "",
  "isTextable1": false,
  "telephone2": "",
  "telephone_description2": "",
  "isTextable2": false,
  "email": "",
  "email2": "",
  "contact_id": "",
  "client_rep_type_id": "",
  "act_as_reference": "Unasked",
  "color_id": "",
  "statBrdSalesNotes": "",
  "statBrdSalesLabelId": 0,
  "selectedOrganizationId": 0,
  "referred_by": "",
  "referred_by1": "",
  "referred_by2": "",
  "referred_by3": "",
  "optionalField1": "",
  "optionalField2": "",
  "optionalField3": "",
  "optionalField4": "",
  "optionalField5": "",
  "optionalField6": "",
  "optionalField7": "",
  "optionalField8": "",
  "optionalField9": "",
  "optionalField10": "",
  "optionalField11": "",
  "optionalField12": "",
  "client_notes": "Created via REST API",
  "address1_title": "",
  "address1_line1": "",
  "address1_line2": "",
  "city1": "",
  "state1": "",
  "zip1": "",
  "country1": "",
  "move_in_date1": "",
  "move_out_date1": ""
}

=======================================================
Annotated JSON:
{
  "salutation": "",						'Ms.' | 'Mrs.' | 'Mr.' | 'Dr.'
  "first_name": "Jane",					String, max length 32		Mandatory Field
  "last_name": "Doe",					String, max length 64		Mandatory Field
  "spouse_salutation": "",				'Ms.' | 'Mrs.' | 'Mr.' | 'Dr.'
  "spouse_first_name": "",				String, max length 32
  "spouse_last_name": "",				String, max length 64
  "telephone1": "",						Example formats: '123 123-1234', '(123) 123-1234'
  "telephone_description1": "",			String, max length 20
  "isTextable1": false,					Boolean
  "telephone2": "",						Example formats: '123 123-1234', '(123) 123-1234'
  "telephone_description2": "",			String, max length 20
  "isTextable2": false,					Boolean
  "email": "",							String, max length 60
  "email2": "",							String, max length 60
  "contact_id": "",						Integer, the contact_id for the client rep
  "client_rep_type_id": "",				Integer, values are 1=Adult Child,4=Attorney,15=Brother,5=Care Manager,13=Friend,2=Grandchild,6=Legal Guardian,10=Nephew,9=Niece,16=Other,8=Parent,17=Power of Attorney,3=Sister,7=Spouse
  "act_as_reference": "Unasked",		values: 'Yes' | 'No' | 'Unasked'
  "color_id": "",						integer from 1-22
  "statBrdSalesNotes": "",				String, max length 512
  "statBrdSalesLabelId": 0,				integer, values are user defined
  "selectedOrganizationId": 0,			Integer, organiztion_id (for their 'original address')
  "referred_by1": "",					String, max length 255
  "referred_by2": "",					String, max length 255
  "referred_by3": "",					String, max length 255
  "optionalField1": "",					String, max length 255
  "optionalField2": "",					String, max length 255
  "optionalField3": "",					String, max length 255
  "optionalField4": "",					String, max length 255
  "optionalField5": "",					String, max length 255
  "optionalField6": "",					String, max length 255
  "optionalField7": "",					String, max length 255
  "optionalField8": "",					String, max length 255
  "optionalField9": "",					String, max length 255
  "optionalField10": "",				String, max length 255
  "optionalField11": "",				String, max length 255
  "optionalField12": "",				String, max length 255
  "client_notes": "Created via API",	String, max length 6143
  "address1_title": "",					String, max length 60
  "address1_line1": "",					String, max length 60
  "address1_line2": "",					String, max length 60
  "city1": "",							String, max length 60
  "state1": "",							String, max length 20
  "zip1": "",							String, max length 10
  "country1": "",						String, max length 50
  "move_in_date1": "",					Date, format Y-m-d
  "move_out_date1": ""					Date, format Y-m-d
}